home *** CD-ROM | disk | FTP | other *** search
/ Winzipper / Winzipper_ISO.iso / programming / oracle7 7.2 / DB / UTIL72 / ULCASE6.CTL < prev    next >
Encoding:
Text File  |  1995-05-09  |  939 b   |  30 lines

  1. -- Copyright (c) 1991 by Oracle Corporation 
  2. --   NAME
  3. --     ulcase6.ctl - <one-line expansion of the name>
  4. --   DESCRIPTION
  5. --     <short description of component this file declares/defines>
  6. --   RETURNS
  7. --
  8. --   NOTES
  9. --     <other useful comments, qualifications, etc.>
  10. --   MODIFIED   (MM/DD/YY)
  11. --    xxxxxx     01/19/95 -  merge changes from branch 1.2.710.1
  12. --    xxxxxxxx   02/21/94 -  specify sorted indexes
  13. --    xxxxxxxx   11/06/92 -  infile is ulcase6 
  14. --    xxxxxxxx   08/28/91 -  Creation 
  15. -- 
  16. -- $Header: ulcase6.ctl 7020200.2 95/03/10 21:55:55 cli Generic<base> $ 
  17. -- 
  18. load data
  19. infile 'ulcase6.dat'
  20. replace
  21. into table emp
  22. sorted indexes (empix)
  23. (empno position(1:4) nullif empno=blanks,
  24. ename position(6:15),
  25. job position(17:25),
  26. mgr position(27:30) nullif mgr=blanks,
  27. sal position(32:39) nullif sal=blanks,
  28. comm position(41:48) nullif comm=blanks,
  29. deptno position(50:51) nullif empno=blanks)
  30.